(a + b) * c with a, b, and c as characters (strings)
The expression a+b is well defined and will concatenate a and b,
but multiplication, i.e. *c, requires one operand to be an int
so this operation will generate an error.
